home *** CD-ROM | disk | FTP | other *** search
- // ExportDlg.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "slsdemo.h"
- #include "ExportDlg.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CExportDlg dialog
-
-
- CExportDlg::CExportDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CExportDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CExportDlg)
- m_strReferenceCode = _T("");
- //}}AFX_DATA_INIT
- }
-
-
- void CExportDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CExportDlg)
- DDX_Text(pDX, IDC_REFCODE, m_strReferenceCode);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CExportDlg, CDialog)
- //{{AFX_MSG_MAP(CExportDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CExportDlg message handlers
-